home *** CD-ROM | disk | FTP | other *** search
/ X User Tools / X User Tools (O'Reilly and Associates)(1994).ISO / sun4c / archive / tcltk.z / tcltk / man / cat3 / MapWindow.3 < prev    next >
Text File  |  1994-09-20  |  2KB  |  67 lines

  1.  
  2.  
  3.  
  4. Tk_MapWindow(3)       Tk Library Procedures
  5.  
  6.  
  7.  
  8. _________________________________________________________________
  9.  
  10. NAME
  11.      Tk_MapWindow, Tk_UnmapWindow - map or unmap a window
  12.  
  13. SYNOPSIS
  14.      #include <tk.h>
  15.  
  16.      Tk_Window
  17.      Tk_MapWindow(_t_k_w_i_n)
  18.  
  19.      Tk_UnmapWindow(_t_k_w_i_n)
  20.  
  21. ARGUMENTS
  22.      Tk_Window   _t_k_w_i_n    (in)      Token for window.
  23. _________________________________________________________________
  24.  
  25.  
  26. DESCRIPTION
  27.      These procedures may  be  used  to  map  and  unmap  windows
  28.      managed by Tk.  Tk_MapWindow maps the window given by _t_k_w_i_n,
  29.      and also creates an X window corresponding to  _t_k_w_i_n  if  it
  30.      doesn't  already  exist.  See the Tk_CreateMainWindow manual
  31.      entry  for  information   on   deferred   window   creation.
  32.      Tk_UnmapWindow unmaps _t_k_w_i_n's window from the screen.
  33.  
  34.      If _t_k_w_i_n is a child window  (i.e.  Tk_CreateChildWindow  was
  35.      used  to  create  it), then event handlers interested in map
  36.      and unmap events are invoked immediately.  If _t_k_w_i_n isn't an
  37.      internal  window,  then  the  event handlers will be invoked
  38.      later, after X has seen the request and  returned  an  event
  39.      for it.
  40.  
  41.      These procedures should be used in place of the X procedures
  42.      XMapWindow  and  XUnmapWindow,  since they update Tk's local
  43.      data structure for _t_k_w_i_n.  Applications using Tk should  not
  44.      invoke XMapWindow and XUnmapWindow directly.
  45.  
  46.  
  47. KEYWORDS
  48.      map, unmap, window
  49.  
  50.  
  51.  
  52.  
  53.  
  54.  
  55.  
  56.  
  57.  
  58.  
  59.  
  60.  
  61.  
  62.  
  63. Tk                                                              1
  64.  
  65.  
  66.  
  67.